home *** CD-ROM | disk | FTP | other *** search
/ Oh!X 2000 Spring / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).7z / Oh!X 2000 Spring Special CD-ROM (Japan) (Part 1).bin / F2JW / CntrItem.cpp < prev    next >
C/C++ Source or Header  |  1999-12-31  |  1KB  |  51 lines

  1. // CntrItem.cpp : CRtCntrItem クラスの動作の定義を行います。
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "f2jw.h"
  6.  
  7. #include "FrnDoc.h"
  8. #include "FrnView.h"
  9. #include "CntrItem.h"
  10.  
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CRtCntrItem インプリメンテーション
  19.  
  20. IMPLEMENT_SERIAL(CRtCntrItem, CRichEditCntrItem, 0)
  21.  
  22. CRtCntrItem::CRtCntrItem(REOBJECT* preo, CFrnDoc* pContainer)
  23.     : CRichEditCntrItem(preo, pContainer)
  24. {
  25.     // TODO: この場所に構築処理用のコードを追加してください。
  26.     
  27. }
  28.  
  29. CRtCntrItem::~CRtCntrItem()
  30. {
  31.     // TODO: この場所に後処理用コードを追加してください。
  32.     
  33. }
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CRtCntrItem クラスの診断
  37.  
  38. #ifdef _DEBUG
  39. void CRtCntrItem::AssertValid() const
  40. {
  41.     CRichEditCntrItem::AssertValid();
  42. }
  43.  
  44. void CRtCntrItem::Dump(CDumpContext& dc) const
  45. {
  46.     CRichEditCntrItem::Dump(dc);
  47. }
  48. #endif
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.